try_call_result
Type representing the result of a function call that may have thrown a require exception.
Constructed by calling try_call_catch(). Contains either a value of type T or error information.
Use is_error to check if the call failed, value to get the value (if the call succeeded), value_or_null to get the value or null (if the call failed), or require_message_or_null to get the error message (if the call failed) or null (if the call succeeded).
Since
0.14.16